page.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. .login-box {
  2. width: 100%;
  3. min-height: 100vh;
  4. background-color: rgb(31, 31, 31);
  5. display: flex;
  6. flex-direction: column;
  7. }
  8. .main {
  9. background-color: #1f1f1f;
  10. padding: .72rem .18rem 0;
  11. -webkit-box-sizing: border-box;
  12. box-sizing: border-box;
  13. }
  14. .main .title {
  15. font-size: .18rem;
  16. }
  17. .main .title h2 {
  18. color: #ff6a01;
  19. text-align: center;
  20. }
  21. .main .otherAccount {
  22. margin: .2rem 0 .1rem;
  23. }
  24. .main .otherAccount .ggAfb,.main .otherAccount .ggAfb span {
  25. display: -webkit-box;
  26. display: -ms-flexbox;
  27. display: flex;
  28. -webkit-box-pack: center;
  29. -ms-flex-pack: center;
  30. justify-content: center;
  31. }
  32. .main .otherAccount .ggAfb span {
  33. -webkit-box-align: center;
  34. -ms-flex-align: center;
  35. align-items: center;
  36. width: 67%;
  37. border-radius: .04rem;
  38. height: .42rem;
  39. color: #fff;
  40. font-size: .1rem;
  41. -webkit-box-sizing: border-box;
  42. box-sizing: border-box;
  43. }
  44. .main .otherAccount .ggAfb span.gg {
  45. background-color: #06b594;
  46. }
  47. .main .otherAccount .ggAfb span i {
  48. width: .26rem;
  49. height: .26rem;
  50. margin-right: .13rem;
  51. background-image: url('https://9f.com/img/gg.ef7c3bc6.svg');
  52. background-size: 100% 100%;
  53. }
  54. .main .otherAccount .or {
  55. display: -webkit-box;
  56. display: -ms-flexbox;
  57. display: flex;
  58. -webkit-box-pack: justify;
  59. -ms-flex-pack: justify;
  60. justify-content: space-between;
  61. -webkit-box-align: center;
  62. -ms-flex-align: center;
  63. align-items: center;
  64. -ms-flex-wrap: nowrap;
  65. flex-wrap: nowrap;
  66. margin-top: .16rem;
  67. }
  68. .main .otherAccount .or:after,.main .otherAccount .or:before {
  69. content: "";
  70. display: block;
  71. width: 100%;
  72. height: 0;
  73. border-top: .01rem solid #666;
  74. }
  75. .main .otherAccount .or span {
  76. display: block;
  77. margin: 0 .03rem;
  78. font-size: .12rem;
  79. color: #ddd;
  80. }
  81. .main .phoneInput, .passwordInput {
  82. width: 100%;
  83. height: auto;
  84. background-color: #494949;
  85. border-radius: 4px;
  86. display: flex;
  87. align-items: center;
  88. justify-content: center;
  89. overflow: hidden;
  90. }
  91. .main .passwordInput {
  92. margin: .13rem 0 .04rem;
  93. }
  94. .main .phoneInput .after {
  95. margin-left: .1rem;
  96. font-size: .14rem;
  97. color: #868686;
  98. }
  99. .main .phoneInput input {
  100. padding-left: .14rem;
  101. -webkit-box-sizing: border-box;
  102. box-sizing: border-box;
  103. }
  104. .main .passwordInput .iconfont {
  105. font-size: .16rem;
  106. }
  107. .main .passwordInput input {
  108. text-indent: .23rem;
  109. }
  110. .main input {
  111. flex: 1;
  112. background-color: #494949;
  113. height: .48rem;
  114. color: #868686;
  115. font-size: .14rem;
  116. outline: none;
  117. }
  118. .main input::placeholder{
  119. color: #868686;
  120. }
  121. .main .btnContent {
  122. margin: .29rem 0 .19rem;
  123. }
  124. .main .btnContent .tips {
  125. text-align: center;
  126. margin-bottom: .06rem;
  127. color: #e53535;
  128. font-size: 0.12rem;
  129. }
  130. .button {
  131. display: block;
  132. width: 100%;
  133. height: .44rem;
  134. background: -webkit-gradient(linear, left top, left bottom, from(#ff9323), to(#ff6a01));
  135. background: -webkit-linear-gradient(top, #ff9323, #ff6a01);
  136. background: -o-linear-gradient(top, #ff9323, #ff6a01);
  137. background: linear-gradient(180deg, #ff9323, #ff6a01);
  138. color: #fff;
  139. text-align: center;
  140. line-height: .44rem;
  141. font-size: .14rem;
  142. border-radius: 4px;
  143. cursor: not-allowed;
  144. opacity: .4;
  145. -webkit-box-sizing: border-box;
  146. box-sizing: border-box;
  147. }
  148. .button.active {
  149. background: -webkit-gradient(linear, left top, left bottom, from(#ff9323), to(#ff6a01));
  150. background: -webkit-linear-gradient(top, #ff9323, #ff6a01);
  151. background: -o-linear-gradient(top, #ff9323, #ff6a01);
  152. background: linear-gradient(180deg, #ff9323, #ff6a01);
  153. cursor: pointer;
  154. opacity: 1;
  155. }
  156. .main .link {
  157. display: -webkit-box;
  158. display: -ms-flexbox;
  159. display: flex;
  160. -webkit-box-pack: justify;
  161. -ms-flex-pack: justify;
  162. justify-content: space-between;
  163. }
  164. .main .link .forgotText {
  165. font-size: .12rem;
  166. color: #fff;
  167. text-align: center;
  168. display: block;
  169. }
  170. .footer-box {
  171. width: 100%;
  172. flex: 1;
  173. display: flex;
  174. flex-direction: column;
  175. justify-content: end;
  176. }
  177. .footer-box .text {
  178. height: .81rem;
  179. background-color: #131212;
  180. color: #7d7d7d;
  181. font-size: .12rem;
  182. display: -webkit-box;
  183. display: -ms-flexbox;
  184. display: flex;
  185. -webkit-box-align: center;
  186. -ms-flex-align: center;
  187. align-items: center;
  188. -webkit-box-pack: justify;
  189. -ms-flex-pack: justify;
  190. justify-content: space-between;
  191. padding: 0 .36rem;
  192. }
  193. .footer-box .text .iconfont {
  194. color: #e53535;
  195. font-size: .2rem;
  196. }